home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / sys / runtime / trace.h < prev   
Encoding:
Text File  |  1998-12-22  |  1.1 KB  |  30 lines

  1. /*
  2. -- This file is  free  software, which  comes  along  with  SmallEiffel. This
  3. -- software  is  distributed  in the hope that it will be useful, but WITHOUT 
  4. -- ANY  WARRANTY;  without  even  the  implied warranty of MERCHANTABILITY or
  5. -- FITNESS  FOR A PARTICULAR PURPOSE. You can modify it as you want, provided
  6. -- this header is kept unaltered, and a notification of the changes is added.
  7. -- You  are  allowed  to  redistribute  it and sell it, alone or as a part of 
  8. -- another product.
  9. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  10. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  11. --                       http://www.loria.fr/SmallEiffel
  12. --
  13. */
  14. /*
  15.   This file (trace.h) is automatically included when `run_control.no_check' is
  16.   true (ie. all modes ecxept -boost).
  17.   This file comes after no_check.[hc] to implements the -trace flag as well as
  18.   some other printing stuff.
  19. */
  20.  
  21. void se_prinT0(T0**o);
  22. void se_prinT2(T2*o);
  23. void se_prinT3(T3*o);
  24. void se_prinT4(T4*o);
  25. void se_prinT5(T5*o);
  26. void se_prinT6(T6*o);
  27. void se_prinT7(T7**o);
  28. void se_prinT8(T8*o);
  29. void se_trace(se_dump_stack*ds,int l,int c,int f);
  30.